home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 16 / CU Amiga Magazine's Super CD-ROM 16 (1997-10-16)(EMAP Images)(GB)[!][issue 1997-11].iso / CUCD / Graphics / Ghostscript / source / gdevmpla.c < prev    next >
C/C++ Source or Header  |  1997-05-17  |  6KB  |  178 lines

  1. /* Copyright (C) 1993, 1994 Aladdin Enterprises.  All rights reserved.
  2.   
  3.   This file is part of Aladdin Ghostscript.
  4.   
  5.   Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  6.   or distributor accepts any responsibility for the consequences of using it,
  7.   or for whether it serves any particular purpose or works at all, unless he
  8.   or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  9.   License (the "License") for full details.
  10.   
  11.   Every copy of Aladdin Ghostscript must include a copy of the License,
  12.   normally in a plain ASCII text file named PUBLIC.  The License grants you
  13.   the right to copy, modify and redistribute Aladdin Ghostscript, but only
  14.   under certain conditions described in the License.  Among other things, the
  15.   License requires that the copyright notice and this notice be preserved on
  16.   all copies.
  17. */
  18.  
  19. /* gdevmpla.c */
  20. /* Any-depth planar "memory" (stored bitmap) devices */
  21. #include "memory_.h"
  22. #include "gx.h"
  23. #include "gxdevice.h"
  24. #include "gxdevmem.h"            /* semi-public definitions */
  25. #include "gdevmem.h"            /* private definitions */
  26.  
  27. /*
  28.  * Planar memory devices store the bits by planes instead of by chunks.
  29.  * The plane corresponding to the least significant bit of the color index
  30.  * is stored first.
  31.  *
  32.  * The current implementations are quite inefficient.
  33.  * We may improve them someday if anyone cares.
  34.  */
  35.  
  36. /* Procedures */
  37. declare_mem_map_procs(mem_planar_map_rgb_color, mem_planar_map_color_rgb);
  38. declare_mem_procs(mem_planar_copy_mono, mem_planar_copy_color, mem_planar_fill_rectangle);
  39.  
  40. /* The device descriptor. */
  41. /* The instance is public. */
  42. /* The default instance has depth = 1, but clients may set this */
  43. /* to other values before opening the device. */
  44. private dev_proc_open_device(mem_planar_open);
  45. private dev_proc_get_bits(mem_planar_get_bits);
  46. const gx_device_memory far_data mem_planar_device =
  47.   mem_full_device("image(planar)", 0, 1, mem_planar_open,
  48.     mem_planar_map_rgb_color, mem_planar_map_color_rgb,
  49.     mem_planar_copy_mono, mem_planar_copy_color, mem_planar_fill_rectangle,
  50.     mem_planar_get_bits, gx_default_map_cmyk_color,
  51.     gx_default_strip_tile_rectangle, gx_no_strip_copy_rop);
  52.  
  53. /* Open a planar memory device. */
  54. private int
  55. mem_planar_open(gx_device *dev)
  56. {    /* Temporarily reset the parameters, and call */
  57.     /* the generic open procedure. */
  58.     int depth = dev->color_info.depth;
  59.     int height = dev->height;
  60.     int code;
  61.  
  62.     dev->height *= depth;
  63.     dev->color_info.depth = 1;
  64.     code = mem_open(dev);
  65.     dev->height = height;
  66.     dev->color_info.depth = depth;
  67.     return code;
  68. }
  69.  
  70. /* Map a r-g-b color to a color index. */
  71. private gx_color_index
  72. mem_planar_map_rgb_color(gx_device *dev, gx_color_value r, gx_color_value g,
  73.   gx_color_value b)
  74. {    int depth = dev->color_info.depth;
  75.     return (*dev_proc(gdev_mem_device_for_bits(depth), map_rgb_color))
  76.       (dev, r, g, b);
  77. }
  78.  
  79. /* Map a color index to a r-g-b color. */
  80. private int
  81. mem_planar_map_color_rgb(gx_device *dev, gx_color_index color,
  82.   gx_color_value prgb[3])
  83. {    int depth = dev->color_info.depth;
  84.     return (*dev_proc(gdev_mem_device_for_bits(depth), map_color_rgb))
  85.       (dev, color, prgb);
  86. }
  87.  
  88. /* Fill a rectangle with a color. */
  89. private int
  90. mem_planar_fill_rectangle(gx_device *dev,
  91.   int x, int y, int w, int h, gx_color_index color)
  92. {    byte **ptrs = mdev->line_ptrs;
  93.     int i;
  94.     for ( i = 0; i < dev->color_info.depth;
  95.           i++, mdev->line_ptrs += dev->height
  96.         )
  97.       (*dev_proc(&mem_mono_device, fill_rectangle))(dev,
  98.             x, y, w, h, (color >> i) & 1);
  99.     mdev->line_ptrs = ptrs;
  100.     return 0;
  101. }
  102.  
  103. /* Copy a bitmap. */
  104. private int
  105. mem_planar_copy_mono(gx_device *dev,
  106.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  107.   int x, int y, int w, int h, gx_color_index zero, gx_color_index one)
  108. {    byte **ptrs = mdev->line_ptrs;
  109.     int i;
  110.     for ( i = 0; i < dev->color_info.depth;
  111.           i++, mdev->line_ptrs += dev->height
  112.         )
  113.       (*dev_proc(&mem_mono_device, copy_mono))(dev,
  114.             base, sourcex, sraster, id, x, y, w, h,
  115.             (zero == gx_no_color_index ? gx_no_color_index :
  116.              (zero >> i) & 1),
  117.             (one == gx_no_color_index ? gx_no_color_index :
  118.              (one >> i) & 1));
  119.     mdev->line_ptrs = ptrs;
  120.     return 0;
  121. }
  122.  
  123. /* Copy a color bitmap. */
  124. /* This is very slow and messy. */
  125. private int
  126. mem_planar_copy_color(gx_device *dev,
  127.   const byte *base, int sourcex, int sraster, gx_bitmap_id id,
  128.   int x, int y, int w, int h)
  129. {    byte **ptrs = mdev->line_ptrs;
  130.     int depth = dev->color_info.depth; 
  131.     int wleft = w;
  132.     int hleft = h;
  133.     const byte *srow = base;
  134.     int ynext = y;
  135. #define max_w 32
  136.     union _b {
  137.         long l[max_w / sizeof(long)];
  138.         byte b[max_w / 8];
  139.     } buf;
  140.  
  141.     while ( wleft > max_w )
  142.     {    mem_planar_copy_color(dev, base,
  143.             sourcex + wleft - max_w, sraster, gx_no_bitmap_id,
  144.             x + wleft - max_w, y, max_w, h);
  145.         wleft -= max_w;
  146.     }
  147.     for ( ; hleft > 0;
  148.           srow += sraster, ynext++, hleft--,
  149.         mdev->line_ptrs += dev->height
  150.         )
  151.     {    int i;
  152.         for ( i = 0; i < depth;
  153.               i++, mdev->line_ptrs += dev->height
  154.             )
  155.         {    int sx, bx;
  156.             memset(buf.b, 0, sizeof(buf.b));
  157.             for ( sx = 0, bx = sourcex * depth + depth - 1 - i;
  158.                   sx < w; sx++, bx += depth
  159.                 )
  160.                 if ( srow[bx >> 3] & (0x80 >> (bx & 7)) )
  161.                     buf.b[sx >> 3] |= 0x80 >> (sx & 7);
  162.             (*dev_proc(&mem_mono_device, copy_mono))(dev,
  163.                 buf.b, 0, sizeof(buf), gx_no_bitmap_id,
  164.                 x, ynext, w, 1,
  165.                 (gx_color_index)0, (gx_color_index)1);
  166.         }
  167.         mdev->line_ptrs = ptrs;
  168.     }
  169.     return 0;
  170. }
  171.  
  172. /* Copy bits back from a planar memory device. */
  173. /****** NOT IMPLEMENTED YET ******/
  174. private int
  175. mem_planar_get_bits(gx_device *dev, int y, byte *str, byte **actual_data)
  176. {    return_error(-1);
  177. }
  178.